home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / lib / mntlib44.zoo / mntlib / raise.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-06  |  166 b   |  14 lines

  1. /* I think ANSI wants this. It's useful, at any rate.
  2.    -- ERS
  3. */
  4.  
  5. #include <unistd.h>
  6. #include <signal.h>
  7.  
  8. int
  9. raise(sig)
  10. int sig;
  11. {
  12.     return kill(getpid(), sig);
  13. }
  14.